home *** CD-ROM | disk | FTP | other *** search
/ MacAddict 18 / MacAddict_018_1998_02.iso / MEDIA / STORE.dxr / Internal_7_forward button.ls < prev    next >
Encoding:
Text File  |  1997-12-04  |  422 b   |  21 lines

  1. on mouseEnter me
  2.   cursor(280)
  3.   set the text of field "rollover text" to "Click here to move forward."
  4.   set the visible of sprite 49 to 1
  5.   updateStage()
  6. end
  7.  
  8. on mouseLeave me
  9.   cursor(-1)
  10.   set the text of field "rollover Text" to EMPTY
  11. end
  12.  
  13. on mouseDown me
  14.   set the member of sprite the currentSpriteNum to "forward glow"
  15. end
  16.  
  17. on mouseUp me
  18.   set the member of sprite the currentSpriteNum to "forward"
  19.   go("02")
  20. end
  21.